home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2006 November
/
PCWorld_2006-11_cd.bin
/
system
/
innosetup
/
isetup-5.1.8.exe
/
{app}
/
Examples
/
MyDll
/
Delphi
/
MyDll.dpr
Wrap
Text File
|
2003-04-13
|
224b
|
15 lines
library MyDll;
uses
Windows;
procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: PChar; uType: Cardinal); stdcall;
begin
MessageBox(hWnd, lpText, lpCaption, uType);
end;
exports MyDllFunc;
begin
end.